home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / tools / vim / src / ptx_stdlib.h < prev    next >
C/C++ Source or Header  |  1995-03-09  |  1KB  |  49 lines

  1. /* vi:ts=4:sw=4
  2.  *
  3.  * VIM - Vi IMproved        by Bram Moolenaar
  4.  *
  5.  * Read the file "credits.txt" for a list of people who contributed.
  6.  * Read the file "uganda.txt" for copying and usage conditions.
  7.  */
  8.  
  9. /*
  10.  * ptx_stdlib.h: declarations which are needed for sequent
  11.  */
  12.  
  13. extern void free(void *);
  14. #ifdef SIZE_T /* sys/types.h */
  15. extern void *malloc(size_t);
  16. #else
  17. extern void *malloc(unsigned);
  18. #endif
  19.  
  20. #ifndef _FCNTL_H_
  21. extern int open(char *, int, ...);
  22. #endif
  23. extern int close(int);
  24. extern int read(int, char *, unsigned);
  25. extern int write(int, char *, unsigned);
  26. extern int ioctl(int, int, ...);
  27. extern int unlink(char *);
  28.  
  29. extern char *getenv(char *);
  30.  
  31. #ifdef _NFILE /* stdio.h */
  32. extern int _filbuf(FILE *);
  33. extern int _flsbuf(unsigned char, FILE *);
  34. #endif
  35.  
  36. #ifdef _POLL_H_
  37. extern int poll(struct pollfd[], unsigned long, int);
  38. #endif /* _POLL_H_ */
  39.  
  40. extern char *getcwd(char *, int);
  41.  
  42. extern int chdir(char *);
  43.  
  44. extern int atoi (char *);
  45. extern long atol(char *);
  46. extern long strtol(char *, char **, int);
  47.  
  48. extern int isatty(int);
  49.